html,
.contenedor_principal {
    overflow-x: hidden;
}

/*--------------------- Contadoooor -------------------*/
.countdown-bar {
    width: 100%;
    max-width: 1920px;
    height: clamp(130px, 20vw, 186px);
    color: #fff;
    gap: 6px;
    /* url(../../../public/images/gdl2025/registro/fondo-countdown.webp),*/
    background: linear-gradient(
        0deg,
        rgba(217, 217, 217, 0) 3.37%,
        #0694d2 50%,
        #03547f 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.countdown-bar p {
    font-size: clamp(18px, 6vw, 32px);
    font-style: normal;
    font-weight: 400;
    line-height: 109.1%;
    text-align: center;
    margin-bottom: initial;
    margin-inline: 10px;
}

.countdown-bar b {
    text-align: center;
    text-shadow: 0 0 15px #1f87c9;
    font-size: clamp(20px, 6vw, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: 109.1%;
}

.countdown-bar span {
    text-shadow: 0 0 15px #1f87c9;
    font-size: clamp(42px, 6vw, 64px);
    font-style: normal;
    font-weight: 700;
    line-height: 109.1%;
}

.crecer {
    transform: scale(0.95);
    animation: up 0.5s ease forwards;
}

/* --------------Contenedor columnas ---------------*/
.form-grid {
    max-width: 1400px;
    display: grid;
    grid-template-areas:
        'icon form'
        'contenido form';
    grid-template-columns: 1fr 1fr;
    align-items: start;
    justify-items: center;
    padding: 30px 30px 0;
    column-gap: 40px;
    align-content: space-evenly;
}

.select-otro {
    display: inline-flex;
}

.form-icon-container {
    max-width: 625px;
    width: 100%;
    gap: clamp(15px, 3vw, 20px);
    grid-area: icon;
}

.form-text-container {
    max-width: 615px;
    width: 100%;
    grid-area: contenido;
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.form-container {
    max-width: 588px;
    width: 100%;
    grid-area: form;
}

@media (max-width: 991px) {
    .form-grid {
        grid-template-areas:
            'icon'
            'form'
            'title'
            'contenido';
        grid-template-columns: 1fr;
        padding-top: 22px;
    }

    .form-container {
        max-width: 633px;
        margin-right: 0;
        padding: 25px 0 34px;
    }
}

@media (max-width: 480px) {
    .form-grid {
        padding-inline: 11px;
    }

    .form-container .row {
        justify-content: center !important;
    }

    .form-container .col-12 {
        max-width: 95%;
    }
}

/* ------------- Contenido Primer Sección ------------ */
.logo-empresa {
    max-width: 300px;
}

.form-title {
    text-align: center;
    line-height: 150%;
}

.textos-azules {
    color: #03547e;
    font-size: 24px;
    line-height: 150%;
    font-size: clamp(18px, 5vw, 24px);
}

.turquesa-medex {
    color: #03a591;
    font-weight: 900;
}

.card-pasos-registro {
    width: 480px;
    margin: 0px;
}

.textos-azules-subt {
    color: #03547e;
    text-align: left;
    font-size: 18px;
    font-weight: 800;
    display: block;
}

.paso-pasito {
    color: #545454;
    font-size: 18px;
    line-height: normal;
}

.paso-pasito li::marker {
    font-weight: 800;
}

.cursor-pointer span {
    color: #01558c;
    font-weight: 700;
    text-decoration-line: underline;
    cursor: pointer;
}

@media (max-width: 992px) {
    .card-pasos-registro {
        width: 100%;
    }

    .textos-azules-subt {
        text-align: center;
    }
}
@media (max-width: 480px) {
    .card-pasos-registro {
        padding-inline: 20px;
        height: auto;
    }
}

.logo-inferior {
    display: flex;
    margin: 40px auto;
    width: 240px;
}

/* ---------------- Textos en el formulario ---------------*/

/* Input */
.container-input {
    width: -webkit-fill-available;
}

.form-container img.img-fluid {
    width: 34px !important;
    height: 34px !important;
    /* top: 50%;
    left: 10px; */
    /* transform: translateY(-50%); */
    margin-right: 15px;
}

.form-control,
.form-select {
    height: 45px !important;
    border-radius: 4px !important;
    border: 1px solid #d0d0d0;
    background: #fff;

    /* Placeholder */
    color: #545454;
    font-size: 15px;
}

.obligatorio {
    color: #565656;
    font-size: 16px;
    font-weight: 600;
}

/* Textos */
.clic-tyc {
    color: #00548e;
    text-align: center;
    font-size: 16px;
    margin-inline: 5px;
}

.clic-tyc em {
    font-weight: 600;
}

.clic-tyc > .terminos-condiciones {
    color: #00a490;
    text-decoration: none;
}

/* Botón registrarme */
.cursor-pointer span {
    color: #01558c;
    font-weight: 700;
    text-decoration-line: underline;
    cursor: pointer;
}

.btn-20 {
    width: clamp(358px, 4vw, 34px) !important;
    font-size: 22px;
}

/* Transición */
@keyframes fall {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.2));
    }
}

@keyframes up {
    to {
        transform: scale(1);
    }
}

.crecer {
    transform: scale(0.95);
    animation: up 0.5s ease forwards;
}

.caer {
    opacity: 1;
    transform: translateY(100px) scale(1.2);
    filter: drop-shadow(0px 90px 38px #969696);
    animation: fall 1s ease forwards;
}

.caer:nth-child(3) {
    transform: translateY(50px) scale(1.1);
    filter: drop-shadow(0 40px 38px #bebdbd);
}

@media (max-width: 770px) {
    .caer {
        opacity: 0;
        transform: translateY(15px) scale(1.2);
        filter: drop-shadow(0px 10px 38px #969696);
        animation: fall 0.8s ease forwards;
    }

    .caer:nth-child(3) {
        transform: translateY(500px) scale(1.1);
        filter: drop-shadow(0 10px 38px #969696);
    }
}
